CommandName{createFont}HelpPath{Fonts}ReturnValue{handle font=}OpenBrace{(}Parameters{str name, int size, bool bold, bool italic, bool underline}CloseBrace{)}Description{Creates a new font and returns its handle.  After creating the font, you can use applyFont to change the appearence of text in a gadget.}ReturnDescription{Handle to the new font.}Param1{name}Param1Desc{The name of the font, eg "Arial", "Times New Roman" or "Courier New".  The font must be installed on the user's system, so it is wise to use well known fonts where possible.}Param2{size}Param2Desc{The size of the font.  This is a point-size, the kind you might find in Microsoft Word for instance.}Param3{bold}Param3Desc{1 if the font is bold, 0 otherwise.}Param4{italic}Param4Desc{1 if the font is italic, 0 otherwise.}Param5{underline}Param5Desc{1 if the font is to be underlined, 0 otherwise.  Not all fonts support the underline option, although most do.}